home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 44 / PC Actual CD 44.iso / Linux / Cygwin / full.exe / Disk1 / data1.cab / Tools / H-i586-cygwin32 / i586-cygwin32 / include / sys / uio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-04  |  348 b   |  26 lines

  1. #ifndef _UIO_H_
  2. #define _UIO_H_
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif /* __cplusplus */
  7.  
  8. /* For size_t */
  9. #include <stddef.h>
  10. /* For ssize_t */
  11. #include <sys/types.h>
  12.  
  13. /*
  14.  * Define the uio buffers used for writev, readv.
  15.  */
  16.  
  17. struct iovec {
  18.     caddr_t iov_base;
  19.     int iov_len;
  20. };
  21.  
  22. #ifdef __cplusplus
  23. };
  24. #endif /* __cplusplus */
  25. #endif /* _UIO_H_ */
  26.